home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinZIP Clear.xpl < prev    next >
Text File  |  2000-04-03  |  1KB  |  63 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Other Programs\WinZIP"
  5. "NAME"="Clear Items"
  6. "VERSION"="1.01"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear recent file list"
  9. "TEXT 2"="Clear Radio Links"
  10. "TEXT 3"="C"
  11. "TEXT 4"="D"
  12. "DESCRIPTION 1"="If you do not want that other people can see the items you have opened, click the button."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  18.  
  19. sP="HKCU\Software\Nico Mak Computing\WinZip\filemenu\"
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.   If RegPathExists(sP)=false then
  24.      Disable()
  25.   end if 
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  if ElementIndex=1 then     
  33.     for l=1 to 30
  34.         s="filemenu" & l
  35.         v=RegReadValue(sP & s)
  36.         
  37.         If IsEmpty(v)=false then
  38.            Call RegDeleteValue(sP & S)
  39.         end if
  40.     Next
  41.  
  42.     Call MsgInformation("Cleared!")
  43.  end if
  44.  
  45.  
  46.  if ElementIndex=2 then 
  47.     'i=RegEnumValues(sp2a)
  48.     'for l=1 to i
  49.     '    Call RegDeleteValue(sp2a & RegEnumElement(l))
  50.     'Next
  51.     'Call RegWriteValue(sp2b,0,2)
  52.  
  53.  
  54.     'Call MsgInformation("Radio links cleared")
  55.  end if
  56.  
  57.  
  58.  
  59. End Sub
  60.  
  61. Sub Plugin_Terminate 
  62. End Sub
  63.